projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e1f7d5
)
(IT_write_glyphs): Don't convert 7-bit ASCII characters via
author
Eli Zaretskii
<eliz@gnu.org>
Mon, 21 Dec 1998 16:10:52 +0000
(16:10 +0000)
committer
Eli Zaretskii
<eliz@gnu.org>
Mon, 21 Dec 1998 16:10:52 +0000
(16:10 +0000)
nonascii-translation-table.
src/msdos.c
patch
|
blob
|
history
diff --git
a/src/msdos.c
b/src/msdos.c
index f94413ee452badfc776264944524c1ca5357dc8e..4f241cec4ef18e2cb8b00050214ca370c5fd47f7 100644
(file)
--- a/
src/msdos.c
+++ b/
src/msdos.c
@@
-728,7
+728,8
@@
IT_write_glyphs (GLYPH *str, int str_len)
ch = FAST_GLYPH_CHAR (g);
if (unibyte_display_via_language_environment
&& SINGLE_BYTE_CHAR_P (ch)
- && (ch >= 0240 || !NILP (Vnonascii_translation_table)))
+ && (ch >= 0240
+ || (ch >= 0200 && !NILP (Vnonascii_translation_table))))
ch = unibyte_char_to_multibyte (ch);
/* Invalid characters are displayed with a special glyph. */